From: Ian Campbell Date: Thu, 2 Sep 2010 17:15:29 +0000 (+0100) Subject: xl: support console autoconnect on restore X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~11544 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/%22bookmarks://%22Dat/%22http:/www.example.com/cgi/%22https:/%22bookmarks:/%22Dat?a=commitdiff_plain;h=422ae1ca2c9135fe1e8fc6ed821f7c9699b5b274;p=xen.git xl: support console autoconnect on restore Signed-off-by: Ian Campbell --- diff --git a/tools/libxl/xl_cmdimpl.c b/tools/libxl/xl_cmdimpl.c index a2a74c8879..f50183a7ca 100644 --- a/tools/libxl/xl_cmdimpl.c +++ b/tools/libxl/xl_cmdimpl.c @@ -2721,11 +2721,14 @@ int main_restore(int argc, char **argv) char *checkpoint_file = NULL; char *config_file = NULL; struct domain_create dom_info; - int paused = 0, debug = 0, daemonize = 1; + int paused = 0, debug = 0, daemonize = 1, console_autoconnect = 0; int opt, rc; - while ((opt = getopt(argc, argv, "hpde")) != -1) { + while ((opt = getopt(argc, argv, "chpde")) != -1) { switch (opt) { + case 'c': + console_autoconnect = 1; + break; case 'p': paused = 1; break; @@ -2761,6 +2764,7 @@ int main_restore(int argc, char **argv) dom_info.config_file = config_file; dom_info.restore_file = checkpoint_file; dom_info.migrate_fd = -1; + dom_info.console_autoconnect = console_autoconnect; rc = create_domain(&dom_info); if (rc < 0)